blob: 0d339737c17573a34545b1ef1ceb42a80f28b4f7 [file] [log] [blame]
Michael J. Spencer626916f2010-12-10 19:47:541# See www/CMake.html for instructions on how to build libcxx with CMake.
Michael J. Spencer626916f2010-12-10 19:47:542#===============================================================================
3# Setup Project
4#===============================================================================
Chris Bienemancad86ff2016-05-31 20:21:525cmake_minimum_required(VERSION 3.4.3)
Michael J. Spencer626916f2010-12-10 19:47:546
Eric Fiseliere9d4b232015-01-26 21:56:457if(POLICY CMP0042)
8 cmake_policy(SET CMP0042 NEW) # Set MACOSX_RPATH=YES by default
9endif()
Eric Fiseliereb6e2ea2015-07-30 22:30:3410if(POLICY CMP0022)
11 cmake_policy(SET CMP0022 NEW) # Required when interacting with LLVM and Clang
12endif()
13
Michael J. Spencer626916f2010-12-10 19:47:5414# Add path for custom modules
15set(CMAKE_MODULE_PATH
Michael J. Spencer626916f2010-12-10 19:47:5416 "${CMAKE_CURRENT_SOURCE_DIR}/cmake"
17 "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules"
Eric Fiselierce5695f2015-12-30 03:39:0318 ${CMAKE_MODULE_PATH}
Michael J. Spencer626916f2010-12-10 19:47:5419 )
20
Eric Fiselier5e000c62016-11-14 02:43:1221if (CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
Saleem Abdulrasool7adfa032016-02-08 03:50:1822 project(libcxx CXX C)
23
24 set(PACKAGE_NAME libcxx)
Shoaib Meenai5b0087f2017-03-25 03:12:3725 set(PACKAGE_VERSION 5.0.0svn)
Saleem Abdulrasool7adfa032016-02-08 03:50:1826 set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}")
27 set(PACKAGE_BUGREPORT "llvm-bugs@lists.llvm.org")
Eric Fiselier5e000c62016-11-14 02:43:1228
29 # Find the LLVM sources and simulate LLVM CMake options.
30 include(HandleOutOfTreeLLVM)
Eugene Zelenko96f10172016-08-08 18:01:5031endif()
Saleem Abdulrasool7adfa032016-02-08 03:50:1832
Petr Hosek3508e7a2017-01-16 00:33:0733if (LIBCXX_STANDALONE_BUILD)
34 include(FindPythonInterp)
35 if( NOT PYTHONINTERP_FOUND )
36 message(WARNING "Failed to find python interpreter. "
37 "The libc++ test suite will be disabled.")
38 set(LLVM_INCLUDE_TESTS OFF)
39 endif()
40endif()
41
Saleem Abdulrasool7adfa032016-02-08 03:50:1842# Require out of source build.
43include(MacroEnsureOutOfSourceBuild)
44MACRO_ENSURE_OUT_OF_SOURCE_BUILD(
45 "${PROJECT_NAME} requires an out of source build. Please create a separate
46 build directory and run 'cmake /path/to/${PROJECT_NAME} [options]' there."
47 )
48
Eric Fiselierfdd3c912017-01-14 06:06:4749if (MSVC)
50 set(LIBCXX_TARGETING_MSVC ON)
51else()
52 set(LIBCXX_TARGETING_MSVC OFF)
53endif()
54
Michael J. Spencer626916f2010-12-10 19:47:5455#===============================================================================
56# Setup CMake Options
57#===============================================================================
Eric Fiselier01609af2016-09-07 01:15:1058include(CMakeDependentOption)
Eric Fiselierc51e0d22017-03-11 03:24:1859include(HandleCompilerRT)
Michael J. Spencer626916f2010-12-10 19:47:5460
Eric Fiseliereb6e2ea2015-07-30 22:30:3461# Basic options ---------------------------------------------------------------
Eric Fiselierb89eba02017-02-04 23:22:2862option(LIBCXX_ENABLE_ASSERTIONS "Enable assertions independent of build mode." OFF)
Eric Fiseliereb6e2ea2015-07-30 22:30:3463option(LIBCXX_ENABLE_SHARED "Build libc++ as a shared library." ON)
Petr Hosekb640da02016-08-08 22:57:2564option(LIBCXX_ENABLE_STATIC "Build libc++ as a static library." ON)
Eric Fiselier5e4698c2016-05-03 21:30:1865option(LIBCXX_ENABLE_EXPERIMENTAL_LIBRARY "Build libc++experimental.a" ON)
Eric Fiselier5bf8bed2017-04-20 04:24:2966set(ENABLE_FILESYSTEM_DEFAULT ${LIBCXX_ENABLE_EXPERIMENTAL_LIBRARY})
67if (WIN32)
68 set(ENABLE_FILESYSTEM_DEFAULT OFF)
69endif()
70option(LIBCXX_ENABLE_FILESYSTEM "Build filesystem as part of libc++experimental.a"
71 ${ENABLE_FILESYSTEM_DEFAULT})
Eric Fiseliereb6e2ea2015-07-30 22:30:3472option(LIBCXX_INCLUDE_TESTS "Build the libc++ tests." ${LLVM_INCLUDE_TESTS})
Eric Fiselier2d2f0c02016-10-30 22:53:0073
Eric Fiselier2d2f0c02016-10-30 22:53:0074# Benchmark options -----------------------------------------------------------
Eric Fiselier0a799bd2016-08-29 19:50:4975option(LIBCXX_INCLUDE_BENCHMARKS "Build the libc++ benchmarks and their dependancies" ON)
Eric Fiselier2d2f0c02016-10-30 22:53:0076set(LIBCXX_BENCHMARK_NATIVE_STDLIB "" CACHE STRING
77 "Build the benchmarks against the specified native STL.
78 The value must be one of libc++/libstdc++")
79set(LIBCXX_BENCHMARK_NATIVE_GCC_TOOLCHAIN "" CACHE STRING
80 "Use alternate GCC toolchain when building the native benchmarks")
81
82if (LIBCXX_BENCHMARK_NATIVE_STDLIB)
83 if (NOT (LIBCXX_BENCHMARK_NATIVE_STDLIB STREQUAL "libc++"
84 OR LIBCXX_BENCHMARK_NATIVE_STDLIB STREQUAL "libstdc++"))
85 message(FATAL_ERROR "Invalid value for LIBCXX_BENCHMARK_NATIVE_STDLIB: "
86 "'${LIBCXX_BENCHMARK_NATIVE_STDLIB}'")
87 endif()
88endif()
89
Eric Fiselierb9f425a2015-08-22 19:40:4990option(LIBCXX_INCLUDE_DOCS "Build the libc++ documentation." ${LLVM_INCLUDE_DOCS})
Eric Fiseliereb6e2ea2015-07-30 22:30:3491set(LIBCXX_LIBDIR_SUFFIX "${LLVM_LIBDIR_SUFFIX}" CACHE STRING
92 "Define suffix of library directory name (32/64)")
93option(LIBCXX_INSTALL_HEADERS "Install the libc++ headers." ON)
Eric Fiselier961269d2015-08-26 20:18:2194option(LIBCXX_INSTALL_LIBRARY "Install the libc++ library." ON)
Eric Fiseliereb6e2ea2015-07-30 22:30:3495option(LIBCXX_INSTALL_SUPPORT_HEADERS "Install libc++ support headers." ON)
Eric Fiselier01609af2016-09-07 01:15:1096cmake_dependent_option(LIBCXX_INSTALL_EXPERIMENTAL_LIBRARY
97 "Install libc++experimental.a" ON
98 "LIBCXX_ENABLE_EXPERIMENTAL_LIBRARY;LIBCXX_INSTALL_LIBRARY" OFF)
Evgeniy Stepanov4f01aa82015-10-13 23:48:2899set(LIBCXX_ABI_VERSION 1 CACHE STRING "ABI version of libc++.")
100option(LIBCXX_ABI_UNSTABLE "Unstable ABI of libc++." OFF)
Saleem Abdulrasoole146f752016-08-24 04:22:52101option(LIBCXX_USE_COMPILER_RT "Use compiler-rt instead of libgcc" OFF)
Eric Fiseliereb6e2ea2015-07-30 22:30:34102
Petr Hosekb640da02016-08-08 22:57:25103if (NOT LIBCXX_ENABLE_SHARED AND NOT LIBCXX_ENABLE_STATIC)
104 message(FATAL_ERROR "libc++ must be built as either a shared or static library.")
105endif()
106
Eric Fiseliereb6e2ea2015-07-30 22:30:34107# ABI Library options ---------------------------------------------------------
Eric Fiseliercfc55152017-01-03 01:18:48108set(LIBCXX_CXX_ABI "default" CACHE STRING
109 "Specify C++ ABI library to use.")
Eric Fiselierbde28712017-01-16 20:47:35110set(CXXABIS none default libcxxabi libcxxrt libstdc++ libsupc++ vcruntime)
Eric Fiseliereb6e2ea2015-07-30 22:30:34111set_property(CACHE LIBCXX_CXX_ABI PROPERTY STRINGS ;${CXXABIS})
112
Eric Fiselier1cf5a812015-10-22 20:54:27113# Setup the default options if LIBCXX_CXX_ABI is not specified.
Eric Fiseliercfc55152017-01-03 01:18:48114if (LIBCXX_CXX_ABI STREQUAL "default")
Petr Hosekd842fed2016-11-09 03:22:28115 find_path(
116 LIBCXX_LIBCXXABI_INCLUDES_INTERNAL
117 cxxabi.h
118 PATHS ${LLVM_MAIN_SRC_DIR}/projects/libcxxabi/include
119 ${LLVM_MAIN_SRC_DIR}/runtimes/libcxxabi/include
120 NO_DEFAULT_PATH
121 )
Shoaib Meenai3d1d1ea2017-04-20 23:33:49122 if (LIBCXX_TARGETING_MSVC)
123 # FIXME: Figure out how to configure the ABI library on Windows.
124 set(LIBCXX_CXX_ABI_LIBNAME "vcruntime")
125 elseif ((NOT LIBCXX_STANDALONE_BUILD OR HAVE_LIBCXXABI) AND
126 IS_DIRECTORY "${LIBCXX_LIBCXXABI_INCLUDES_INTERNAL}")
Eric Fiselier1cf5a812015-10-22 20:54:27127 set(LIBCXX_CXX_ABI_LIBNAME "libcxxabi")
Petr Hosekd842fed2016-11-09 03:22:28128 set(LIBCXX_CXX_ABI_INCLUDE_PATHS "${LIBCXX_LIBCXXABI_INCLUDES_INTERNAL}")
Eric Fiselier1cf5a812015-10-22 20:54:27129 set(LIBCXX_CXX_ABI_INTREE 1)
Shoaib Meenai3d1d1ea2017-04-20 23:33:49130 elseif (APPLE)
131 set(LIBCXX_CXX_ABI_LIBNAME "libcxxabi")
132 set(LIBCXX_CXX_ABI_SYSTEM 1)
Eugene Zelenko96f10172016-08-08 18:01:50133 else()
Shoaib Meenai3d1d1ea2017-04-20 23:33:49134 set(LIBCXX_CXX_ABI_LIBNAME "default")
Eugene Zelenko96f10172016-08-08 18:01:50135 endif()
136else()
Eric Fiselier1cf5a812015-10-22 20:54:27137 set(LIBCXX_CXX_ABI_LIBNAME "${LIBCXX_CXX_ABI}")
Eugene Zelenko96f10172016-08-08 18:01:50138endif()
Eric Fiselier1cf5a812015-10-22 20:54:27139
Eric Fiselierbb856cc2015-10-15 22:41:51140# Use a static copy of the ABI library when linking libc++. This option
141# cannot be used with LIBCXX_ENABLE_ABI_LINKER_SCRIPT.
Eric Fiseliereb6e2ea2015-07-30 22:30:34142option(LIBCXX_ENABLE_STATIC_ABI_LIBRARY "Statically link the ABI library" OFF)
143
Eric Fiselier8cbf0202015-10-14 19:54:03144# Generate and install a linker script inplace of libc++.so. The linker script
Eric Fiselierbb856cc2015-10-15 22:41:51145# will link libc++ to the correct ABI library. This option is on by default
Shoaib Meenaie5774012017-03-25 03:22:35146# on UNIX platforms other than Apple unless 'LIBCXX_ENABLE_STATIC_ABI_LIBRARY'
Eric Fiselier5d5b59b2015-10-22 20:50:07147# is on. This option is also disabled when the ABI library is not specified
148# or is specified to be "none".
Eric Fiselierbb856cc2015-10-15 22:41:51149set(ENABLE_LINKER_SCRIPT_DEFAULT_VALUE OFF)
Eric Fiselier1d3716a2015-10-15 23:04:54150if (LLVM_HAVE_LINK_VERSION_SCRIPT AND NOT LIBCXX_ENABLE_STATIC_ABI_LIBRARY
Eric Fiselier1cf5a812015-10-22 20:54:27151 AND NOT LIBCXX_CXX_ABI_LIBNAME STREQUAL "none"
Eric Fiseliercfc55152017-01-03 01:18:48152 AND NOT LIBCXX_CXX_ABI_LIBNAME STREQUAL "default"
Asiri Rathnayake10a68292016-05-14 23:58:11153 AND PYTHONINTERP_FOUND
154 AND LIBCXX_ENABLE_SHARED)
Eric Fiselierbb856cc2015-10-15 22:41:51155 set(ENABLE_LINKER_SCRIPT_DEFAULT_VALUE ON)
156endif()
157
Eric Fiselier8cbf0202015-10-14 19:54:03158option(LIBCXX_ENABLE_ABI_LINKER_SCRIPT
Eric Fiselierbb856cc2015-10-15 22:41:51159 "Use and install a linker script for the given ABI library"
Eric Fiselier1d3716a2015-10-15 23:04:54160 ${ENABLE_LINKER_SCRIPT_DEFAULT_VALUE})
Eric Fiselier8cbf0202015-10-14 19:54:03161
Eric Fiselierdc69aac2017-03-02 19:35:33162set(ENABLE_NEW_DELETE_DEFAULT ON)
163if (LIBCXXABI_ENABLE_NEW_DELETE_DEFINITIONS)
Eric Fiselier0cbd39f2017-03-02 21:55:03164# FIXME: This option should default to off. Unfortunatly GCC 4.9 fails to link
Shoaib Meenaif23e2812017-03-25 03:29:51165# programs due to undefined references to new/delete in libc++abi so to work
Eric Fiselier0cbd39f2017-03-02 21:55:03166# around this libc++abi currently defaults LIBCXXABI_ENABLE_NEW_DELETE_DEFINITIONS
167# to ON. Once the GCC bug has been worked around this option should be changed
168# back to OFF.
169 set(ENABLE_NEW_DELETE_DEFAULT ON)
Eric Fiselierdc69aac2017-03-02 19:35:33170endif()
171
172option(LIBCXX_ENABLE_NEW_DELETE_DEFINITIONS
173 "Build libc++ with definitions for operator new/delete. This option can
174 be used to disable the definitions when libc++abi is expected to provide
175 them" ${ENABLE_NEW_DELETE_DEFAULT})
176
Eric Fiseliereb6e2ea2015-07-30 22:30:34177# Build libc++abi with libunwind. We need this option to determine whether to
178# link with libunwind or libgcc_s while running the test cases.
179option(LIBCXXABI_USE_LLVM_UNWINDER "Build and use the LLVM unwinder." OFF)
Petr Hosekf4699a52017-02-09 02:19:43180option(LIBCXXABI_ENABLE_STATIC_UNWINDER "Statically link the LLVM unwinder." OFF)
Eric Fiseliereb6e2ea2015-07-30 22:30:34181
182# Target options --------------------------------------------------------------
183option(LIBCXX_BUILD_32_BITS "Build 32 bit libc++." ${LLVM_BUILD_32_BITS})
184set(LIBCXX_SYSROOT "" CACHE STRING "Use alternate sysroot.")
185set(LIBCXX_GCC_TOOLCHAIN "" CACHE STRING "Use alternate GCC toolchain.")
186
187# Feature options -------------------------------------------------------------
Michael J. Spencer626916f2010-12-10 19:47:54188option(LIBCXX_ENABLE_EXCEPTIONS "Use exceptions." ON)
189option(LIBCXX_ENABLE_RTTI "Use run time type information." ON)
Ed Schoutenb33ae5b2015-03-12 15:44:39190option(LIBCXX_ENABLE_GLOBAL_FILESYSTEM_NAMESPACE "Build libc++ with support for the global filesystem namespace." ON)
Ed Schoutenabd06b42015-03-26 14:35:46191option(LIBCXX_ENABLE_STDIN "Build libc++ with support for stdin/std::cin." ON)
192option(LIBCXX_ENABLE_STDOUT "Build libc++ with support for stdout/std::cout." ON)
Eric Fiselier7330ed32014-12-06 21:02:58193option(LIBCXX_ENABLE_THREADS "Build libc++ with support for threads." ON)
Ed Schouten323ade32015-06-24 08:44:38194option(LIBCXX_ENABLE_THREAD_UNSAFE_C_FUNCTIONS "Build libc++ with support for thread-unsafe C functions" ON)
Eric Fiselier7330ed32014-12-06 21:02:58195option(LIBCXX_ENABLE_MONOTONIC_CLOCK
196 "Build libc++ with support for a monotonic clock.
Jonathan Roelofs5e91fa12015-08-24 21:20:07197 This option may only be set to OFF when LIBCXX_ENABLE_THREADS=OFF." ON)
Vasileios Kalintiris579b42b2015-11-09 10:21:04198option(LIBCXX_HAS_MUSL_LIBC "Build libc++ with support for the Musl C library" OFF)
Ben Craig5163e462016-05-25 17:40:09199option(LIBCXX_HAS_PTHREAD_API "Ignore auto-detection and force use of pthread API" OFF)
Asiri Rathnayake040945b2016-09-11 21:46:40200option(LIBCXX_HAS_EXTERNAL_THREAD_API
201 "Build libc++ with an externalized threading API.
202 This option may only be set to ON when LIBCXX_ENABLE_THREADS=ON." OFF)
Eric Fiselier66134e82017-01-06 20:05:40203option(LIBCXX_BUILD_EXTERNAL_THREAD_LIBRARY
204 "Build libc++ with an externalized threading library.
205 This option may only be set to ON when LIBCXX_ENABLE_THREADS=ON" OFF)
Eric Fiseliereb6e2ea2015-07-30 22:30:34206
207# Misc options ----------------------------------------------------------------
Eric Fiseliercb23a492015-10-10 03:34:52208# FIXME: Turn -pedantic back ON. It is currently off because it warns
209# about #include_next which is used everywhere.
210option(LIBCXX_ENABLE_PEDANTIC "Compile with pedantic enabled." OFF)
Eric Fiseliereb6e2ea2015-07-30 22:30:34211option(LIBCXX_ENABLE_WERROR "Fail and stop if a warning is triggered." OFF)
Saleem Abdulrasoolab008f72016-07-12 14:39:13212option(LIBCXX_DISABLE_MACRO_CONFLICT_WARNINGS "Disable #warnings about conflicting macros." OFF)
Eric Fiseliereb6e2ea2015-07-30 22:30:34213
Eric Fiselierbf9653d2015-03-31 04:15:45214option(LIBCXX_GENERATE_COVERAGE "Enable generating code coverage." OFF)
215set(LIBCXX_COVERAGE_LIBRARY "" CACHE STRING
Eric Fiseliereb6e2ea2015-07-30 22:30:34216 "The Profile-rt library used to build with code coverage")
217
Eric Fiselier961269d2015-08-26 20:18:21218# Don't allow a user to accidentally overwrite the system libc++ installation on Darwin.
219# If the user specifies -DCMAKE_INSTALL_PREFIX=/usr the install rules for libc++
220# will not be generated and a warning will be issued.
221option(LIBCXX_OVERRIDE_DARWIN_INSTALL "Enable overwriting darwins libc++ installation." OFF)
222mark_as_advanced(LIBCXX_OVERRIDE_DARWIN_INSTALL) # Don't show this option by default.
223
224if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin" AND NOT LIBCXX_OVERRIDE_DARWIN_INSTALL)
225 if ("${CMAKE_INSTALL_PREFIX}" STREQUAL "/usr")
226 message(WARNING "Disabling libc++ install rules because installation would "
227 "overwrite the systems installation. Configure with "
228 "-DLIBCXX_OVERRIDE_DARWIN_INSTALL=ON to suppress this behaviour.")
229 mark_as_advanced(CLEAR LIBCXX_OVERRIDE_DARWIN_INSTALL) # Show the override option.
230 set(LIBCXX_INSTALL_HEADERS OFF)
231 set(LIBCXX_INSTALL_LIBRARY OFF)
232 endif()
233endif()
234
Eric Fiselier85df7a82015-12-16 23:41:05235set(LIBCXX_CONFIGURE_IDE_DEFAULT OFF)
236if (XCODE OR MSVC_IDE)
237 set(LIBCXX_CONFIGURE_IDE_DEFAULT ON)
238endif()
239option(LIBCXX_CONFIGURE_IDE "Configure libcxx for use within an IDE"
240 ${LIBCXX_CONFIGURE_IDE_DEFAULT})
241
Eric Fiseliereb6e2ea2015-07-30 22:30:34242#===============================================================================
243# Check option configurations
244#===============================================================================
245
Eric Fiselier6e9a6942016-06-17 19:46:40246if (LIBCXX_ENABLE_FILESYSTEM AND NOT LIBCXX_ENABLE_EXPERIMENTAL_LIBRARY)
247 message(FATAL_ERROR
248 "LIBCXX_ENABLE_FILESYSTEM cannot be turned on when LIBCXX_ENABLE_EXPERIMENTAL_LIBRARY=OFF")
249endif()
250
Eric Fiseliereb6e2ea2015-07-30 22:30:34251# Ensure LIBCXX_ENABLE_MONOTONIC_CLOCK is set to ON only when
252# LIBCXX_ENABLE_THREADS is on.
253if(LIBCXX_ENABLE_THREADS AND NOT LIBCXX_ENABLE_MONOTONIC_CLOCK)
254 message(FATAL_ERROR "LIBCXX_ENABLE_MONOTONIC_CLOCK can only be set to OFF"
255 " when LIBCXX_ENABLE_THREADS is also set to OFF.")
Eric Fiselier25a15162014-08-18 05:03:46256endif()
Michael J. Spencer626916f2010-12-10 19:47:54257
Asiri Rathnayakee262e7b2017-01-03 12:59:50258if(NOT LIBCXX_ENABLE_THREADS)
259 if(LIBCXX_HAS_PTHREAD_API)
260 message(FATAL_ERROR "LIBCXX_HAS_PTHREAD_API can only be set to ON"
261 " when LIBCXX_ENABLE_THREADS is also set to ON.")
262 endif()
263 if(LIBCXX_HAS_EXTERNAL_THREAD_API)
264 message(FATAL_ERROR "LIBCXX_HAS_EXTERNAL_THREAD_API can only be set to ON"
265 " when LIBCXX_ENABLE_THREADS is also set to ON.")
266 endif()
Eric Fiselier66134e82017-01-06 20:05:40267 if (LIBCXX_BUILD_EXTERNAL_THREAD_LIBRARY)
268 message(FATAL_ERROR "LIBCXX_BUILD_EXTERNAL_THREAD_LIBRARY can only be set "
269 "to ON when LIBCXX_ENABLE_THREADS is also set to ON.")
270 endif()
271
272endif()
273
Asiri Rathnayakeda39f1b2017-01-09 10:38:56274if (LIBCXX_HAS_EXTERNAL_THREAD_API)
275 if (LIBCXX_BUILD_EXTERNAL_THREAD_LIBRARY)
276 message(FATAL_ERROR "The options LIBCXX_BUILD_EXTERNAL_THREAD_LIBRARY and "
277 "LIBCXX_HAS_EXTERNAL_THREAD_API cannot both be ON at "
278 "the same time")
279 endif()
280 if (LIBCXX_HAS_PTHREAD_API)
281 message(FATAL_ERROR "The options LIBCXX_HAS_EXTERNAL_THREAD_API"
282 "and LIBCXX_HAS_PTHREAD_API cannot be both"
283 "set to ON at the same time.")
284 endif()
Asiri Rathnayake040945b2016-09-11 21:46:40285endif()
286
Eric Fiseliereb6e2ea2015-07-30 22:30:34287# Ensure LLVM_USE_SANITIZER is not specified when LIBCXX_GENERATE_COVERAGE
288# is ON.
289if (LLVM_USE_SANITIZER AND LIBCXX_GENERATE_COVERAGE)
290 message(FATAL_ERROR "LLVM_USE_SANITIZER cannot be used with LIBCXX_GENERATE_COVERAGE")
291endif()
292
293# Set LIBCXX_BUILD_32_BITS to (LIBCXX_BUILD_32_BITS OR LLVM_BUILD_32_BITS)
294# and check that we can build with 32 bits if requested.
295if (CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32)
296 if (LIBCXX_BUILD_32_BITS AND NOT LLVM_BUILD_32_BITS) # Don't duplicate the output from LLVM
297 message(STATUS "Building 32 bits executables and libraries.")
298 endif()
299elseif(LIBCXX_BUILD_32_BITS)
300 message(FATAL_ERROR "LIBCXX_BUILD_32_BITS=ON is not supported on this platform.")
301endif()
302
303# Check that this option is not enabled on Apple and emit a usage warning.
Eric Fiselierc0b166e2015-03-03 15:59:51304if (LIBCXX_ENABLE_STATIC_ABI_LIBRARY)
305 if (APPLE)
306 message(FATAL_ERROR "LIBCXX_ENABLE_STATIC_ABI_LIBRARY is not supported on OS X")
307 else()
308 message(WARNING "LIBCXX_ENABLE_STATIC_ABI_LIBRARY is an experimental option")
309 endif()
Eric Fiselier60479ea2016-11-18 19:53:45310 if (LIBCXX_ENABLE_STATIC AND NOT PYTHONINTERP_FOUND)
311 message(FATAL_ERROR "LIBCXX_ENABLE_STATIC_ABI_LIBRARY requires python but it was not found.")
312 endif()
Eric Fiselierc0b166e2015-03-03 15:59:51313endif()
314
Eric Fiselier8cbf0202015-10-14 19:54:03315if (LIBCXX_ENABLE_ABI_LINKER_SCRIPT)
316 if (APPLE)
317 message(FATAL_ERROR "LIBCXX_ENABLE_ABI_LINKER_SCRIPT cannot be used on APPLE targets")
318 endif()
319 if (NOT PYTHONINTERP_FOUND)
320 message(FATAL_ERROR "LIBCXX_ENABLE_ABI_LINKER_SCRIPT requires python but it was not found.")
321 endif()
Asiri Rathnayake10a68292016-05-14 23:58:11322 if (NOT LIBCXX_ENABLE_SHARED)
323 message(FATAL_ERROR "LIBCXX_ENABLE_ABI_LINKER_SCRIPT is only available for shared library builds.")
324 endif()
Eric Fiselier8cbf0202015-10-14 19:54:03325endif()
326
327if (LIBCXX_ENABLE_STATIC_ABI_LIBRARY AND LIBCXX_ENABLE_ABI_LINKER_SCRIPT)
328 message(FATAL_ERROR "Conflicting options given.
329 LIBCXX_ENABLE_STATIC_ABI_LIBRARY cannot be specified with
330 LIBCXX_ENABLE_ABI_LINKER_SCRIPT")
331endif()
332
Vasileios Kalintiris579b42b2015-11-09 10:21:04333if (LIBCXX_HAS_MUSL_LIBC AND NOT LIBCXX_INSTALL_SUPPORT_HEADERS)
334 message(FATAL_ERROR "LIBCXX_INSTALL_SUPPORT_HEADERS can not be turned off"
335 "when building for Musl with LIBCXX_HAS_MUSL_LIBC.")
336endif()
337
Michael J. Spencer626916f2010-12-10 19:47:54338#===============================================================================
339# Configure System
340#===============================================================================
341
Eric Fiselier4778eed2014-12-20 03:16:55342set(LIBCXX_COMPILER ${CMAKE_CXX_COMPILER})
343set(LIBCXX_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR})
344set(LIBCXX_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR})
Eric Fiselierbde28712017-01-16 20:47:35345set(LIBCXX_BINARY_INCLUDE_DIR "${LIBCXX_BINARY_DIR}/include/c++build")
Jonas Hahnfeldf77a7df2017-05-04 06:02:50346if (LLVM_LIBRARY_OUTPUT_INTDIR)
347 set(LIBCXX_LIBRARY_DIR ${LLVM_LIBRARY_OUTPUT_INTDIR})
348else()
349 set(LIBCXX_LIBRARY_DIR ${CMAKE_BINARY_DIR}/lib${LIBCXX_LIBDIR_SUFFIX})
350endif()
Eric Fiselierbde28712017-01-16 20:47:35351file(MAKE_DIRECTORY "${LIBCXX_BINARY_INCLUDE_DIR}")
Eric Fiselier4778eed2014-12-20 03:16:55352
Eric Fiseliereb6e2ea2015-07-30 22:30:34353set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${LIBCXX_LIBRARY_DIR})
354set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${LIBCXX_LIBRARY_DIR})
Shoaib Meenaib975b452017-04-13 16:27:38355set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${LIBCXX_LIBRARY_DIR})
Eric Fiseliereb6e2ea2015-07-30 22:30:34356
Eric Fiselier8e2855c2014-11-15 06:26:30357# Declare libc++ configuration variables.
358# They are intended for use as follows:
359# LIBCXX_CXX_FLAGS: General flags for both the compiler and linker.
360# LIBCXX_COMPILE_FLAGS: Compile only flags.
361# LIBCXX_LINK_FLAGS: Linker only flags.
Eric Fiselier3bf8a9c2016-10-09 21:34:03362# LIBCXX_LIBRARIES: libraries libc++ is linked to.
363# LIBCXX_INTERFACE_LIBRARIES: Libraries that must be linked when using libc++
Eric Fiselier742d8782016-10-10 14:45:06364# These libraries are exposed in the linker script.
Eric Fiselier8e2855c2014-11-15 06:26:30365set(LIBCXX_COMPILE_FLAGS "")
366set(LIBCXX_LINK_FLAGS "")
Eric Fiseliereb6e2ea2015-07-30 22:30:34367set(LIBCXX_LIBRARIES "")
Eric Fiselier3bf8a9c2016-10-09 21:34:03368set(LIBCXX_INTERFACE_LIBRARIES "")
Eric Fiselier8e2855c2014-11-15 06:26:30369
Eric Fiseliera27cbf82016-06-02 01:10:08370# Include macros for adding and removing libc++ flags.
371include(HandleLibcxxFlags)
372
373# Target flags ================================================================
374# These flags get added to CMAKE_CXX_FLAGS and CMAKE_C_FLAGS so that
375# 'config-ix' use them during feature checks. It also adds them to both
376# 'LIBCXX_COMPILE_FLAGS' and 'LIBCXX_LINK_FLAGS'
377add_target_flags_if(LIBCXX_BUILD_32_BITS "-m32")
Petr Hosekcebb3e92017-04-16 02:25:55378add_target_flags_if(LIBCXX_TARGET_TRIPLE "--target=${LIBCXX_TARGET_TRIPLE}")
Eric Fiseliera27cbf82016-06-02 01:10:08379add_target_flags_if(LIBCXX_SYSROOT "--sysroot=${LIBCXX_SYSROOT}")
Petr Hosekcebb3e92017-04-16 02:25:55380add_target_flags_if(LIBCXX_GCC_TOOLCHAIN "--gcc-toolchain=${LIBCXX_GCC_TOOLCHAIN}")
Eric Fiselier6e467a82016-11-13 22:27:00381if (LIBCXX_TARGET_TRIPLE)
382 set(TARGET_TRIPLE "${LIBCXX_TARGET_TRIPLE}")
383endif()
Eric Fiseliera27cbf82016-06-02 01:10:08384
Eric Fiselier9a1468f2014-11-15 17:25:23385# Configure compiler.
386include(config-ix)
Eric Fiseliereb6e2ea2015-07-30 22:30:34387
Saleem Abdulrasoole146f752016-08-24 04:22:52388if (LIBCXX_USE_COMPILER_RT)
389 list(APPEND LIBCXX_LINK_FLAGS "-rtlib=compiler-rt")
390endif()
391
Eric Fiselierbf9653d2015-03-31 04:15:45392# Configure coverage options.
393if (LIBCXX_GENERATE_COVERAGE)
394 include(CodeCoverage)
395 set(CMAKE_BUILD_TYPE "COVERAGE" CACHE STRING "" FORCE)
396endif()
Eric Fiselier9a1468f2014-11-15 17:25:23397
Eric Fiseliereb6e2ea2015-07-30 22:30:34398string(TOUPPER "${CMAKE_BUILD_TYPE}" uppercase_CMAKE_BUILD_TYPE)
Eric Fiselier157fd342017-01-14 07:54:39399if (uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG")
400 set(LIBCXX_DEBUG_BUILD ON)
401else()
402 set(LIBCXX_DEBUG_BUILD OFF)
403endif()
Eric Fiseliereb6e2ea2015-07-30 22:30:34404
Eric Fiselier9a1468f2014-11-15 17:25:23405#===============================================================================
406# Setup Compiler Flags
407#===============================================================================
408
JF Bastienc7c4c772016-03-05 14:22:02409include(HandleLibCXXABI) # Setup the ABI library flags
Eric Fiseliereb6e2ea2015-07-30 22:30:34410
Michal Gornyb79ca0a2016-09-27 07:55:26411if (NOT LIBCXX_STANDALONE_BUILD)
412 # Remove flags that may have snuck in.
413 remove_flags(-DNDEBUG -UNDEBUG -D_DEBUG
Eric Fiselier8e395592017-01-17 23:27:56414 -lc++abi)
Michal Gornyb79ca0a2016-09-27 07:55:26415endif()
416remove_flags(-stdlib=libc++ -stdlib=libstdc++)
Eric Fiseliereb6e2ea2015-07-30 22:30:34417
Eric Fiselierfdd3c912017-01-14 06:06:47418# FIXME: Remove all debug flags and flags that change which Windows
419# default libraries are linked. Currently we only support linking the
420# non-debug DLLs
Eric Fiselier157fd342017-01-14 07:54:39421remove_flags("/D_DEBUG" "/MTd" "/MDd" "/MT" "/Md")
Eric Fiselierfdd3c912017-01-14 06:06:47422
Shoaib Meenai68fdad62017-03-25 03:42:20423# FIXME(EricWF): See the FIXME on LIBCXX_ENABLE_PEDANTIC.
Eric Fiselier7b081f62015-10-15 20:27:15424# Remove the -pedantic flag and -Wno-pedantic and -pedantic-errors
Shoaib Meenai68fdad62017-03-25 03:42:20425# so they don't get transformed into -Wno and -errors respectively.
Eric Fiselier7b081f62015-10-15 20:27:15426remove_flags(-Wno-pedantic -pedantic-errors -pedantic)
Eric Fiselier499d8782015-10-13 23:56:33427
Eric Fiseliereb6e2ea2015-07-30 22:30:34428# Required flags ==============================================================
Eric Fiselierc9e74dd2016-08-14 22:51:54429set(LIBCXX_STANDARD_VER c++11 CACHE INTERNAL "internal option to change build dialect")
Petr Hosek44197a12016-10-23 21:48:27430if (LIBCXX_HAS_MUSL_LIBC)
431 # musl's pthread implementations uses volatile types in their structs which is
432 # not a constexpr in C++11 but is in C++14, so we use C++14 with musl.
433 set(LIBCXX_STANDARD_VER c++14 CACHE INTERNAL "internal option to change build dialect")
434endif()
Eric Fiselierc9e74dd2016-08-14 22:51:54435add_compile_flags_if_supported(-std=${LIBCXX_STANDARD_VER})
436mangle_name("LIBCXX_SUPPORTS_STD_EQ_${LIBCXX_STANDARD_VER}_FLAG" SUPPORTS_DIALECT_NAME)
Saleem Abdulrasool1ca3c452017-01-01 20:20:40437if(NOT ${SUPPORTS_DIALECT_NAME})
438 if(NOT "${CMAKE_CXX_COMPILER_ID}" STREQUAL "MSVC" AND NOT "${CMAKE_CXX_SIMULATE_ID}" STREQUAL "MSVC")
439 message(FATAL_ERROR "C++11 or greater is required but the compiler does not support ${LIBCXX_STANDARD_VER}")
440 endif()
Eric Fiseliereb6e2ea2015-07-30 22:30:34441endif()
442
Eric Fiselier5514d362015-07-29 23:46:55443# On all systems the system c++ standard library headers need to be excluded.
Eric Fiseliereb6e2ea2015-07-30 22:30:34444# MSVC only has -X, which disables all default includes; including the crt.
445# Thus, we do nothing and hope we don't accidentally include any of the C++
446# headers
447add_compile_flags_if_supported(-nostdinc++)
Eric Fiselierd74dee92015-07-29 21:07:28448
Eric Fiselier8330b1e2016-10-25 19:43:44449# Hide all inline function definitions which have not explicitly been marked
450# visible. This prevents new definitions for inline functions from appearing in
451# the dylib when get ODR used by another function.
452add_compile_flags_if_supported(-fvisibility-inlines-hidden)
453
Eric Fiselier74c98572016-09-26 22:19:41454# Let the library headers know they are currently being used to build the
455# library.
Eric Fiselier6dbed462016-09-16 00:00:48456add_definitions(-D_LIBCPP_BUILDING_LIBRARY)
457
Eric Fiselierdc69aac2017-03-02 19:35:33458if (NOT LIBCXX_ENABLE_NEW_DELETE_DEFINITIONS)
459 add_definitions(-D_LIBCPP_DISABLE_NEW_DELETE_DEFINITIONS)
460endif()
461
Eric Fiseliereb6e2ea2015-07-30 22:30:34462# Warning flags ===============================================================
Eric Fiselier692177d2015-07-18 20:40:46463add_definitions(-D_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
Eric Fiseliereb6e2ea2015-07-30 22:30:34464add_compile_flags_if_supported(
Eric Fiselier3ec6b842016-08-29 20:43:38465 -Wall -Wextra -W -Wwrite-strings
466 -Wno-unused-parameter -Wno-long-long
Eric Fiseliereb6e2ea2015-07-30 22:30:34467 -Werror=return-type)
Eric Fiselier3ec6b842016-08-29 20:43:38468if ("${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang")
469 add_compile_flags_if_supported(
470 -Wno-user-defined-literals
471 -Wno-covered-switch-default)
472elseif("${CMAKE_CXX_COMPILER_ID}" MATCHES "GNU")
473 add_compile_flags_if_supported(
Eric Fiselier3ec6b842016-08-29 20:43:38474 -Wno-literal-suffix
Eric Fiselierf3b3a652017-04-03 20:53:15475 -Wno-c++14-compat
476 -Wno-noexcept-type)
Eric Fiselier3ec6b842016-08-29 20:43:38477endif()
Michael J. Spencer626916f2010-12-10 19:47:54478if (LIBCXX_ENABLE_WERROR)
Eric Fiseliereb6e2ea2015-07-30 22:30:34479 add_compile_flags_if_supported(-Werror)
480 add_compile_flags_if_supported(-WX)
Eric Fiselier26d23902015-07-31 01:25:01481else()
482 # TODO(EricWF) Remove this. We shouldn't be suppressing errors when -Werror is
483 # added elsewhere.
484 add_compile_flags_if_supported(-Wno-error)
Michael J. Spencer626916f2010-12-10 19:47:54485endif()
486if (LIBCXX_ENABLE_PEDANTIC)
Eric Fiseliereb6e2ea2015-07-30 22:30:34487 add_compile_flags_if_supported(-pedantic)
Michael J. Spencer626916f2010-12-10 19:47:54488endif()
Saleem Abdulrasoolab008f72016-07-12 14:39:13489if (LIBCXX_DISABLE_MACRO_CONFLICT_WARNINGS)
490 add_definitions(-D_LIBCPP_DISABLE_MACRO_CONFLICT_WARNINGS)
491endif()
Michael J. Spencer626916f2010-12-10 19:47:54492
Eric Fiseliereb6e2ea2015-07-30 22:30:34493# Exception flags =============================================================
Michael J. Spencer626916f2010-12-10 19:47:54494if (LIBCXX_ENABLE_EXCEPTIONS)
495 # Catches C++ exceptions only and tells the compiler to assume that extern C
496 # functions never throw a C++ exception.
Eric Fiseliereb6e2ea2015-07-30 22:30:34497 add_compile_flags_if_supported(-EHsc)
Michael J. Spencer626916f2010-12-10 19:47:54498else()
Eric Fiseliereb6e2ea2015-07-30 22:30:34499 add_definitions(-D_LIBCPP_NO_EXCEPTIONS)
500 add_compile_flags_if_supported(-EHs- -EHa-)
501 add_compile_flags_if_supported(-fno-exceptions)
Michael J. Spencer626916f2010-12-10 19:47:54502endif()
Eric Fiseliereb6e2ea2015-07-30 22:30:34503
504# RTTI flags ==================================================================
Michael J. Spencer626916f2010-12-10 19:47:54505if (NOT LIBCXX_ENABLE_RTTI)
Eric Fiseliereb6e2ea2015-07-30 22:30:34506 add_definitions(-D_LIBCPP_NO_RTTI)
507 add_compile_flags_if_supported(-GR-)
508 add_compile_flags_if_supported(-fno-rtti)
Michael J. Spencer626916f2010-12-10 19:47:54509endif()
Eric Fiseliereb6e2ea2015-07-30 22:30:34510
Asiri Rathnayake040945b2016-09-11 21:46:40511# Threading flags =============================================================
Asiri Rathnayakeda39f1b2017-01-09 10:38:56512if (LIBCXX_BUILD_EXTERNAL_THREAD_LIBRARY AND LIBCXX_ENABLE_SHARED)
Asiri Rathnayake040945b2016-09-11 21:46:40513 # Need to allow unresolved symbols if this is to work with shared library builds
514 if (APPLE)
515 add_link_flags("-undefined dynamic_lookup")
516 else()
517 # Relax this restriction from HandleLLVMOptions
518 string(REPLACE "-Wl,-z,defs" "" CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS}")
519 endif()
520endif()
521
Eric Fiseliereb6e2ea2015-07-30 22:30:34522# Assertion flags =============================================================
523define_if(LIBCXX_ENABLE_ASSERTIONS -UNDEBUG)
524define_if_not(LIBCXX_ENABLE_ASSERTIONS -DNDEBUG)
Eric Fiselierb89eba02017-02-04 23:22:28525define_if(LIBCXX_ENABLE_ASSERTIONS -D_LIBCPP_DEBUG=0)
Eric Fiselier157fd342017-01-14 07:54:39526define_if(LIBCXX_DEBUG_BUILD -D_DEBUG)
527if (LIBCXX_ENABLE_ASSERTIONS AND NOT LIBCXX_DEBUG_BUILD)
Michael J. Spencer626916f2010-12-10 19:47:54528 # MSVC doesn't like _DEBUG on release builds. See PR 4379.
Eric Fiselierfdd3c912017-01-14 06:06:47529 define_if_not(LIBCXX_TARGETING_MSVC -D_DEBUG)
Howard Hinnant4a0e74f2013-02-25 15:50:36530endif()
Michael J. Spencer626916f2010-12-10 19:47:54531
Eric Fiselier29026ad2016-10-14 12:56:52532# Modules flags ===============================================================
533# FIXME The libc++ sources are fundamentally non-modular. They need special
534# versions of the headers in order to provide C++03 and legacy ABI definitions.
535# NOTE: The public headers can be used with modules in all other contexts.
536if (LLVM_ENABLE_MODULES)
537 # Ignore that the rest of the modules flags are now unused.
538 add_compile_flags_if_supported(-Wno-unused-command-line-argument)
539 add_compile_flags(-fno-modules)
540endif()
541
Jonathan Roelofs5e91fa12015-08-24 21:20:07542# Sanitizer flags =============================================================
Eric Fiselier5514d362015-07-29 23:46:55543
Chris Bieneman8c226962016-08-18 21:31:51544# Configure for sanitizers. If LIBCXX_STANDALONE_BUILD then we have to do
Eric Fiselier5514d362015-07-29 23:46:55545# the flag translation ourselves. Othewise LLVM's CMakeList.txt will handle it.
Chris Bieneman8c226962016-08-18 21:31:51546if (LIBCXX_STANDALONE_BUILD)
Eric Fiseliereb6e2ea2015-07-30 22:30:34547 set(LLVM_USE_SANITIZER "" CACHE STRING
548 "Define the sanitizer used to build the library and tests")
Eric Fiselier5514d362015-07-29 23:46:55549 # NOTE: LLVM_USE_SANITIZER checks for a UNIX like system instead of MSVC.
550 # But we don't have LLVM_ON_UNIX so checking for MSVC is the best we can do.
551 if (LLVM_USE_SANITIZER AND NOT MSVC)
Eric Fiseliereb6e2ea2015-07-30 22:30:34552 add_flags_if_supported("-fno-omit-frame-pointer")
553 add_flags_if_supported("-gline-tables-only")
554
Eric Fiselier5514d362015-07-29 23:46:55555 if (NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG" AND
556 NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "RELWITHDEBINFO")
Eric Fiseliereb6e2ea2015-07-30 22:30:34557 add_flags_if_supported("-gline-tables-only")
Eric Fiselier5514d362015-07-29 23:46:55558 endif()
559 if (LLVM_USE_SANITIZER STREQUAL "Address")
Eric Fiseliereb6e2ea2015-07-30 22:30:34560 add_flags("-fsanitize=address")
Eric Fiselier5514d362015-07-29 23:46:55561 elseif (LLVM_USE_SANITIZER MATCHES "Memory(WithOrigins)?")
Eric Fiseliereb6e2ea2015-07-30 22:30:34562 add_flags(-fsanitize=memory)
Eric Fiselier5514d362015-07-29 23:46:55563 if (LLVM_USE_SANITIZER STREQUAL "MemoryWithOrigins")
Eric Fiseliereb6e2ea2015-07-30 22:30:34564 add_flags("-fsanitize-memory-track-origins")
Eric Fiselier5514d362015-07-29 23:46:55565 endif()
566 elseif (LLVM_USE_SANITIZER STREQUAL "Undefined")
Eric Fiseliereb6e2ea2015-07-30 22:30:34567 add_flags("-fsanitize=undefined -fno-sanitize=vptr,function -fno-sanitize-recover=all")
Eric Fiselier5514d362015-07-29 23:46:55568 elseif (LLVM_USE_SANITIZER STREQUAL "Thread")
Eric Fiseliereb6e2ea2015-07-30 22:30:34569 add_flags(-fsanitize=thread)
Eric Fiselier5514d362015-07-29 23:46:55570 else()
571 message(WARNING "Unsupported value of LLVM_USE_SANITIZER: ${LLVM_USE_SANITIZER}")
572 endif()
Eric Fiseliereb6e2ea2015-07-30 22:30:34573 elseif(LLVM_USE_SANITIZER AND MSVC)
574 message(WARNING "LLVM_USE_SANITIZER is not supported on this platform.")
Eric Fiselier5514d362015-07-29 23:46:55575 endif()
576endif()
Eric Fiselier73ffc782015-10-13 22:12:02577
578# Configuration file flags =====================================================
Evgeniy Stepanov4f01aa82015-10-13 23:48:28579if (NOT LIBCXX_ABI_VERSION EQUAL "1")
580 config_define(${LIBCXX_ABI_VERSION} _LIBCPP_ABI_VERSION)
581endif()
582config_define_if(LIBCXX_ABI_UNSTABLE _LIBCPP_ABI_UNSTABLE)
583
Eric Fiselier73ffc782015-10-13 22:12:02584config_define_if_not(LIBCXX_ENABLE_GLOBAL_FILESYSTEM_NAMESPACE _LIBCPP_HAS_NO_GLOBAL_FILESYSTEM_NAMESPACE)
585config_define_if_not(LIBCXX_ENABLE_STDIN _LIBCPP_HAS_NO_STDIN)
586config_define_if_not(LIBCXX_ENABLE_STDOUT _LIBCPP_HAS_NO_STDOUT)
587config_define_if_not(LIBCXX_ENABLE_THREADS _LIBCPP_HAS_NO_THREADS)
588config_define_if_not(LIBCXX_ENABLE_MONOTONIC_CLOCK _LIBCPP_HAS_NO_MONOTONIC_CLOCK)
589config_define_if_not(LIBCXX_ENABLE_THREAD_UNSAFE_C_FUNCTIONS _LIBCPP_HAS_NO_THREAD_UNSAFE_C_FUNCTIONS)
590
Ben Craig5163e462016-05-25 17:40:09591config_define_if(LIBCXX_HAS_PTHREAD_API _LIBCPP_HAS_THREAD_API_PTHREAD)
Asiri Rathnayake040945b2016-09-11 21:46:40592config_define_if(LIBCXX_HAS_EXTERNAL_THREAD_API _LIBCPP_HAS_THREAD_API_EXTERNAL)
Eric Fiselier66134e82017-01-06 20:05:40593config_define_if(LIBCXX_BUILD_EXTERNAL_THREAD_LIBRARY _LIBCPP_HAS_THREAD_LIBRARY_EXTERNAL)
Vasileios Kalintiris579b42b2015-11-09 10:21:04594config_define_if(LIBCXX_HAS_MUSL_LIBC _LIBCPP_HAS_MUSL_LIBC)
595
Eric Fiselier74c98572016-09-26 22:19:41596# By default libc++ on Windows expects to use a shared library, which requires
597# the headers to use DLL import/export semantics. However when building a
598# static library only we modify the headers to disable DLL import/export.
599if (DEFINED WIN32 AND LIBCXX_ENABLE_STATIC AND NOT LIBCXX_ENABLE_SHARED)
600 message(STATUS "Generating custom __config for non-DLL Windows build")
Shoaib Meenaic6d8e8a2016-12-05 19:40:12601 config_define(ON _LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS)
Eric Fiselier74c98572016-09-26 22:19:41602endif()
603
Eric Fiselier73ffc782015-10-13 22:12:02604if (LIBCXX_NEEDS_SITE_CONFIG)
Saleem Abdulrasool1ca3c452017-01-01 20:20:40605 configure_file("include/__config_site.in"
606 "${LIBCXX_BINARY_DIR}/__config_site"
607 @ONLY)
608
Eric Fiseliera6622792015-10-14 00:22:05609 # Provide the config definitions by included the generated __config_site
610 # file at compile time.
Saleem Abdulrasool1ca3c452017-01-01 20:20:40611 if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "MSVC" OR "${CMAKE_CXX_SIMULATE_ID}" STREQUAL "MSVC")
612 add_compile_flags("/FI\"${LIBCXX_BINARY_DIR}/__config_site\"")
613 else()
614 add_compile_flags("-include ${LIBCXX_BINARY_DIR}/__config_site")
615 endif()
Eric Fiselier73ffc782015-10-13 22:12:02616endif()
617
Michael J. Spencer626916f2010-12-10 19:47:54618#===============================================================================
Eric Fiseliereb6e2ea2015-07-30 22:30:34619# Setup Source Code And Tests
Michael J. Spencer626916f2010-12-10 19:47:54620#===============================================================================
Michael J. Spencer626916f2010-12-10 19:47:54621include_directories(include)
Howard Hinnantc4962b32013-11-15 17:18:57622add_subdirectory(include)
Michael J. Spencer626916f2010-12-10 19:47:54623add_subdirectory(lib)
Eric Fiselierb9f425a2015-08-22 19:40:49624
Eric Fiselier5e000c62016-11-14 02:43:12625
Eric Fiselierd9b9ef72016-07-19 23:07:03626if (LIBCXX_INCLUDE_BENCHMARKS)
627 add_subdirectory(benchmarks)
628endif()
Eric Fiselierc57fb582017-03-01 21:53:30629
630# Create the lit.site.cfg file even when LIBCXX_INCLUDE_TESTS is OFF or
631# LLVM_FOUND is OFF. This allows users to run the tests manually using
632# LIT without requiring a full LLVM checkout.
Duncan P. N. Exon Smith59a094f2017-05-03 23:33:54633#
634# However, since some submission systems strip test/ subdirectories, check for
635# it before adding it.
636if(IS_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/test")
637 add_subdirectory(test)
638endif()
Eric Fiseliereb6e2ea2015-07-30 22:30:34639if (LIBCXX_INCLUDE_TESTS)
Eric Fiselier5e000c62016-11-14 02:43:12640 add_subdirectory(lib/abi)
Eric Fiseliereb6e2ea2015-07-30 22:30:34641endif()
Eric Fiselierc57fb582017-03-01 21:53:30642
Eric Fiselierb9f425a2015-08-22 19:40:49643if (LIBCXX_INCLUDE_DOCS)
644 add_subdirectory(docs)
645endif()